|
F is a module-oriented, compiled and numeric computer programming language. F is designed for scientific programming and scientific computation.〔(【引用サイトリンク】 All About F )〕 F was developed by the Fortran Company and was developed as a modern Fortran thus making it a subset of Fortran 95 and Fortran 90〔(【引用サイトリンク】 The F Language )〕 programming language. It combines both numerical features and data abstraction features from these languages.F is also backwards compatibility thus allowing to make calls to Fortran 77 program. F uses the g95 compiler, which is the same compiler used for Fortran 95. F compilers are readily available on both Windows and various Linux Operating Systems free of charge or can be as part of a bundle from the Fortran Store. == Overview == F is not permissive thus there is only one way to write codes.〔(【引用サイトリンク】 The F Language )〕 All key words and function names are reserved words in F therefore names cannot be the same as any keyword. F is equipped with more than one hundred intrinsic procedures built into it therefore does not need to include additional standard libraries or modules.〔(【引用サイトリンク】 The F Programming Language Tastes Like Java )〕 Language keywords and intrinsic function names are reserved keywords in F and no other names may take this exact form. * Source Form F contains the same set of character used in Fortran 90/95 with a limit of 132 characters. Reserved words are always written in lowercase. Any uppercase letter may appear in a character constant. Variable names do not have restrictions therefore can include upper and lowercase characters. Quotes are used as delimiter for a character string. * Formatting F supports formatting. A format consist of a * (for list-directed formatting) or a list of edit descriptors, control edit descriptors or format list items. The comma is used to separate format items. Characters are not allowed after the final right parenthesis in a format specifier or character format variable.〔(【引用サイトリンク】 The F Language )〕 The control descriptors are tn, tln, trn, ()/, :, s, sp, ss.. F does not support carriage control; it is file and OS dependent. 抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)』 ■ウィキペディアで「F (programming language)」の詳細全文を読む スポンサード リンク
|